home *** CD-ROM | disk | FTP | other *** search
/ Mesolore / Mesolore - Disc 2.iso / mac / data / Lecture.dir / 00004_Script_4 < prev    next >
Text File  |  2001-04-13  |  908b  |  27 lines

  1. Global   glecturetext,glecturevideo
  2.  
  3. on startmovie
  4.   glecturetext = TRUE
  5.   glecturevideo = TRUE
  6.   if the platform contains "macintosh" then
  7.     set the lineheight of field "textholder"=15
  8.   end if
  9. end
  10.  
  11. on checkifmovieplaying
  12.   if sprite(4).movierate > 0 then
  13.     if the name of the member of sprite 3 contains "summary" then
  14.       case (the framelabel) of
  15.         "ca": set the member of sprite 3 = "carrasco_eng"
  16.         "av": set the member of sprite 3 = "aveni_eng"
  17.         "ji": set the member of sprite 3 = "jansen-perez_spn"
  18.       end case
  19.       sendSprite(15, #CustomScrollbar_SwapMember,the member of sprite 3)
  20.       sendSprite(16, #CustomScrollbar_SwapMember,the member of sprite 3)
  21.       sendSprite(17, #CustomScrollbar_SwapMember,the member of sprite 3)
  22.       sendSprite(18, #CustomScrollbar_SwapMember,the member of sprite 3)
  23.       updatestage
  24.     end if
  25.   end if
  26.   
  27. end